#Week 1 _ Data Variables

import math

#1.
def eggCartons(eggs) :
    return 41
#2.
def distance(x1, y1, x2, y2):
    return 41
#3.
def triangleArea(s1, s2, s3):
    return 41
#4.
def triangleAreaByCoordinates(x1, y1, x2, y2, x3, y3):
    return 41

#5.
def lineIntersection(m1, b1, m2, b2) :
    return 41

#6.
def nthFibonacciNumber(n) :
    return 41

#Bonus - add without using an if statement
def isFactor(f, n) :
    return
